home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rjs.lha / RJS / Transport / tests / qtest.C < prev    next >
C/C++ Source or Header  |  1991-06-14  |  353b  |  24 lines

  1. #include <iostream.h>
  2. #include <stdio.h>
  3. #include <osfcn.h>
  4. #include <libc.h>
  5.  
  6. #include "RJS/Transport.h"
  7.  
  8.  
  9. int main(int argc, char *argv[]) 
  10. {
  11.  
  12.  
  13.   UnixAddress server("/tmp/unix.dg");
  14.  
  15.   cout << "pathname = " << server.pathname() << endl;
  16.  
  17.   UnixAddress server2(UnixAddress::Temp);
  18.  
  19.   cout << "pathname = " << server2.pathname() << endl;
  20.  
  21.   exit(0);
  22. }
  23.  
  24.